home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / DOSHELP.ZIP / DOSHLP.HLP next >
Text File  |  1990-11-12  |  80KB  |  2,035 lines

  1. %Append
  2.                                                             Page 1 of 2
  3. @@PHelps DOS locate files outside the current directory.
  4. @@F[d:][path]APPEND d:path[;[d:]path ...]  or
  5. [d:][path]APPEND [/X][/E]  or
  6. APPEND [;]
  7. @@R[d:]path specifies the path to search when a program is looking
  8. for a file with an extension other that .COM, .EXE, and .BAT.
  9.  
  10. /X tells APPEND to process SEARCH FIRST, FIND FIRST, and EXEC
  11. functions. Commands like COMP and DIR use the SEARCH FIRST
  12. functions to search for their files. Commands like BACKUP, RESTORE,
  13. and TREE use the FIND FIRST function to look for their files. DOS
  14. uses the EXEC function any time a command is entered.
  15. .page
  16.                                                             Page 2 of 2
  17. @@R/E tells APPEND to keep its paths in the DOS environment, much like
  18. the PATH command.
  19.  
  20. ; is used to separate the APPEND paths or to request a list of the
  21. current APPEND paths.
  22.  
  23.  
  24. Refer to your DOS manual for more information on the APPEND command.
  25. %Autoexec Batch File
  26.                                                             Page 1 of 3
  27. @@PExecutes a series of commands to configure DOS to your
  28. specifications each time the computer is turned on or restarted.
  29. @@RWith this program, you can automatically give DOS commands every
  30. time you start up your computer. That way, you can configure DOS
  31. and your system to your specific requirements.
  32. .page
  33.                                                             Page 2 of 3
  34.  
  35. Some of the more popular commands used in the AUTOEXEC.BAT file
  36. are:
  37.  
  38. IECHO OFFI
  39. Usually the first command in the batch file. This command turns off
  40. the echo feature of a batch file. It reduces the amount of
  41. information displayed on the screen as the other commands in the
  42. batch file are carried out.
  43.  
  44. IBREAK ONI
  45. You may want to prematurely interrupt an executing program because
  46. you made a typing error in the command line, or other reason.
  47. Holding the CTRL key and pressing the BREAK key will stop a program
  48. only when there is keyboard input or video screen output. But there
  49. may not be input or output during some programs. If the BREAK
  50. feature is turned ON, DOS will check for Ctrl-Break more
  51. frequently. Because the default setting is OFF, you should turn it
  52. on in the AUTOEXEC.BAT file.
  53. .page
  54.                                                             Page 3 of 3
  55. IVERIFY ONI
  56. Normally when DOS writes to a disk file, it does not check to see
  57. that the information has been correctly written. The VERIFY ON
  58. command turns on the verification feature so that DOS will check
  59. that each file is correctly written. Of course, when VERIFY is ON,
  60. it takes longer to write a disk file. However, it is better to be
  61. safe even though it does take a little longer.
  62.  
  63. IPATHI
  64. The PATH command establishes a search path for program execution.
  65. This command tells DOS where to look for a program when it cannot
  66. be found in the current directory or drive.
  67.  
  68. These commands are explained separately in this HELP program.
  69. %Assign
  70.                                                             Page 1 of 2
  71. @@PInstructs DOS to route disk I/O requests for one drive to
  72. another drive.
  73. @@F[d:][path]ASSIGN [x[=]y[...]]
  74. @@Rx specifies the drive to which current disk I/O requests are sent.
  75.  
  76. y specifies the drive letter that you want disk I/O requests to be
  77. routed to.
  78.  
  79. Type ASSIGN with no parameters to reset all drives to normal
  80. assignment.
  81. .page
  82.                                                             Page 2 of 2
  83.  
  84. Some applications programs can only be run on, or access their data
  85. from, one disk drive. The ASSIGN command allows you to assign a
  86. drive letter that is not on your system to a drive letter which is
  87. available on your system. An example of this would be if you have
  88. only one disk on your computer, and your applications program was
  89. programmed to use drive C for all of its data storage. With the
  90. ASSIGN command, you could assign all requests for drive C to drive A.
  91.  
  92. If you want to use the ASSIGN command for more than one drive, it
  93. must be done with one ASSIGN command. This is because each ASSIGN
  94. command statement cancels any previous ones.
  95. @@EAssign all requests for drives A and B to C.
  96.  
  97.     ASSIGN A=C B=C
  98.  
  99. Return all assignments to their normal drive.
  100.  
  101.     ASSIGN
  102. %Attrib
  103.                                                             Page 1 of 3
  104. @@PChanges the read-only attribute of a disk file.
  105. @@F[d:][path]ATTRIB [+R | -R] [d:][path]filename[.ext]
  106. @@R+R sets the read-only attribute bit for the specified file.
  107.  
  108. -R removes (clears) the read-only attribute bit for the specified
  109. file.
  110.  
  111. The global filename characters, ? and *,  are allowed.
  112. .page
  113.                                                             Page 2 of 3
  114.  
  115. Each disk file can be marked as read-only so that it cannot be
  116. accidentally deleted. This "file attribute" is stored in the disk
  117. directory for each file. This attribute bit can be set or cleared
  118. by using the ATTRIB command.
  119.  
  120. A file that is marked as read-only will be seen in the directory as
  121. normal, with the DIR command. However, if you try to delete the
  122. file with the DEL or ERASE commands, DOS will not carry out the
  123. command. It will give you an "Access denied" error message.
  124.  
  125. Another file attribute, named the "archive attribute", shows
  126. whether a file has been changed since the last backup was made.
  127. This attribute is cleared by special backup programs when they
  128. perform backup on a disk, such as the DOS BACKUP program. When
  129. using a backup program, you can specify to backup only those files
  130. that have not been changed since the last backup--instead of
  131. backing up all files, which can take much longer. The backup
  132. program examines this archive attribute to determine whether or
  133. not to backup a file. If you have DOS version 3.2 or later, you can
  134. use the ATTRIB command to set or clear the archive attribute, as
  135. well as the read-only attribute.
  136. .page
  137.                                                             Page 3 of 3
  138. @@ESet the read-only attribute for MYFILE.TXT.
  139.  
  140.     ATTRIB +R MYFILE.TXT
  141.  
  142. Reset the read-only attribute for all files named MYFILE with any
  143. extension.
  144.  
  145.     ATTRIB -R MYFILE.*
  146.  
  147. Display the attribute of all files.
  148.  
  149.     ATTRIB *.*
  150. %Backup
  151.                                                             Page 1 of 2
  152. @@PBacks up one or more files from one disk to another. This is
  153. usually used to back up files from a hard disk.
  154. @@F[d:][path]BACKUP [d:][path][filename[.ext]]
  155. d:[/S][/M][/A][/D:mm-dd-yy][/T:hh:mm:ss][/F]
  156. [/L[:[d:][path]filename[.ext]]]
  157. @@R/S Backup files in all subdirectories as well.
  158. /M Backup only those files that have changed since the last backup.
  159. /A Add files to the backup disk.
  160. /D:mm-dd-yy Backup files modified on or after the specified date.
  161. /T:hh:mm:ss to backup files that have been modified on or after the
  162. specified time on the date specified.
  163. .page
  164.                                                             Page 2 of 2
  165. @@R/F to format the target disk if it is not formatted.
  166.  
  167. /L to specify a log file. If a file name is not specified, the
  168. default is BACKUP.LOG, and is stored in the root directory of the
  169. source drive.
  170.  
  171. Refer to your DOS manual for information about your version of BACKUP.
  172. @@EBackup all files on drive C to drive A.
  173.  
  174.     BACKUP C:\*.* A: /S
  175. %Basic
  176.                                                             Page 1 of 1
  177. @@PStarts the basic interpreter (normal or advanced). Optionally
  178. executes the program name given as a parameter.
  179. @@F[d:][path]BASIC[A] [d:][program[.bas]]
  180. @@RRefer to your BASIC manual for more information on the BASIC
  181. language.
  182.  
  183. @@ERun the BASIC interpreter and execute TEST.BAS.
  184.  
  185.     BASIC TEST
  186. %Break
  187.                                                             Page 1 of 2
  188. @@PInstructs DOS to check for a control break whenever a program
  189. requests DOS to perform a function.
  190. @@FBREAK [=[ON | OFF]]
  191. @@RON to set BREAK=ON. This means that DOS checks for control break
  192. whenever a program requests DOS to perform a function. This allows
  193. you to break out of a program that usually would not let you break
  194. out.
  195. .page
  196.                                                             Page 2 of 2
  197.  
  198. OFF to set BREAK=OFF. This means that DOS only checks for control
  199. break during:
  200.  
  201.     o Standard output operations
  202.  
  203.     o Standard input operations
  204.  
  205.     o Standard printer operations
  206.  
  207. Each time your system is started, BREAK is automatically turned
  208. off. You can turn break on automatically by placing the BREAK ON
  209. command in your AUTOEXEC.BAT file on your startup disk. See your
  210. DOS manual for more information on the AUTOEXEC.BAT file.
  211. %Chdir (CD)
  212.                                                             Page 1 of 2
  213. @@PChanges or displays the current directory.
  214. @@FCHDIR [d:][path]  or  CD [d:][path]
  215. @@RTyping CHDIR or CD without parameters will display the current
  216. directory.
  217. .page
  218.                                                             Page 2 of 2
  219. @@EChange the current directory to the root directory.
  220.  
  221.     CD \
  222.  
  223. Change the current directory to LEVEL2.
  224.  
  225.     CD \LEVEL1\LEVEL2
  226.  
  227. Display the current directory.
  228.  
  229.     CD
  230. %Chkdsk
  231.                                                             Page 1 of 2
  232. @@PAnalyzes the directories, files, and File Allocation Table on the
  233. specified drive, or default drive, and produces a disk and memory
  234. status report.
  235. @@F[d:][path]CHKDSK [d:][filename[.ext]] [/F][/V]
  236. @@R/F Will fix errors in the File Allocation Table
  237. /V Will tell of progress in CHKDSK (Verbose)
  238.  
  239. The CHKDSK command checks for errors in the file directories. These
  240. errors can be caused by several things, the most common of which is
  241. turning off the computer while a program is still running.
  242. .page
  243.                                                             Page 2 of 2
  244.  
  245. When the /F parameter is used, CHKDSK will create and allocate any
  246. "lost" clusters to files in the root directory beginning with the
  247. filename FILE001.CHK. These files will contain the data from the
  248. lost clusters. This will allow you to retrieve the data from these
  249. files. This is useless if the lost clusters contain DOS programs.
  250. However, if these lost clusters contain data from a text file that
  251. was lost while using your word processor, you may be able to
  252. retrieve this data and place it back into your word processor file.
  253. @@ECheck drive B and fix all allocation errors.
  254.  
  255.     CHKDSK B: /F
  256. %Cls
  257.                                                             Page 1 of 1
  258. @@PClears the video screen.
  259. @@FCLS
  260. @@RUse this command when you want to clear the video screen.
  261. %Comp
  262.                                                             Page 1 of 2
  263. @@PCompares two disk files.
  264. @@F[d:][path]COMP [d:][path][filename[.ext]]
  265. [d:][path][filename[.ext]]
  266. @@RThis command is useful when you want to see if two files contain
  267. the same data. COMP will display any differences on the screen.
  268. .page
  269.                                                             Page 2 of 2
  270. @@ECompare JUNK on drive A to JUNK on drive B.
  271.  
  272.     COMP A:JUNK B:
  273.  
  274. Compare all files on drive A to all files on drive B.
  275.  
  276.     COMP A: B:
  277.  
  278. Compare all files on drive A with the extension .ASM to all files
  279. on drive C with the same name.
  280.  
  281.     COMP A:*.ASM C:
  282. %Copy
  283.                                                             Page 1 of 3
  284. @@PCopies files.
  285. @@FCOPY[/A][/B][d:][path]filename[.ext][/A][/B]
  286. [d:][path]filename[.ext][/A][/B][/V]
  287.  
  288. or
  289.  
  290. COPY[/A][/B][d:][path]filename[.ext][/A][/B]
  291. [+[d:][path]filename[.ext][/A][/B]...]
  292. [d:][path]filename[.ext][/A][/B][/V]
  293. .page
  294.                                                             Page 2 of 3
  295. @@R/A Treat as ASCII file. When used with source file name, copies up
  296. to but not including the first Ctrl Z (EOF marker). When used with
  297. target file name, causes a Ctrl Z to be added as the last character
  298. of the file.
  299.  
  300. /B With source file name, the entire file based on directory size
  301. is copied. With target file name, causes NO Ctrl Z to be added to
  302. the file.
  303.  
  304. /V Verify that target sectors are written correctly. This is the
  305. same as setting the VERIFY command to ON. See VERIFY for more
  306. information on that command.
  307. @@ECopy HELP.DAT from drive A to drive B.
  308.  
  309.     COPY A:HELP.DAT B:
  310. .page
  311.                                                             Page 3 of 3
  312. @@ECopy HELP.DAT on drive A to a file named TEMP on the same drive.
  313.  
  314.     COPY A:HELP.DAT TEMP
  315.  
  316. Copy all files from drive B to drive C.
  317.  
  318.     COPY B:*.* C:
  319.  
  320. Copy FILE1 and FILE2 from drive A into one file named FILE3 on
  321. drive C.
  322.  
  323.     COPY A:FILE1 + A:FILE2 C:FILE3
  324. %CTTY
  325.                                                             Page 1 of 2
  326. @@PChanges the standard input and output console to an auxiliary
  327. console, or restores the keyboard and screen as the standard input
  328. and output devices.
  329. @@FCTTY device-name
  330. @@RThis command is useful when you want to use a terminal connected to
  331. your serial port. The MODE command must be used before this is done
  332. to initialize the serial port to the desired settings.
  333.  
  334. See your DOS manual for more information on the CTTY command.
  335. .page
  336.                                                             Page 2 of 2
  337. @@ESet the standard input and output device to the first serial port.
  338.  
  339.     CTTY COM1:
  340. %Date
  341.                                                             Page 1 of 2
  342. @@PSet or display the current system date.
  343. @@FDATE [mm-dd-yy]
  344. @@RType DATE without a parameter to display and/or set the current
  345. system date. DOS will display the current date and ask you to enter
  346. a new date. You can enter a new date, or press Enter to keep the
  347. current date.
  348. .page
  349.                                                             Page 2 of 2
  350. @@ESet the system date to December 25, 1987.
  351.  
  352.     DATE 12-25-87
  353.  
  354. Display the current system date.
  355.  
  356.     DATE
  357. %Del / Erase
  358.                                                             Page 1 of 2
  359. @@PDeletes the specified disk file.
  360. @@FDEL [d:][path]filename[.ext]
  361. @@RThis command erases files that match the filename. Write protected
  362. files cannot be erased. If the global filename characters *.* are
  363. given, DOS will request verification of this command.
  364.  
  365. The global filename characters, ? and *, are allowed.
  366. .page
  367.                                                             Page 2 of 2
  368. @@EDelete all files with the extension .ASM.
  369.  
  370.     DEL *.ASM
  371.  
  372. Delete all files. DOS will ask to verify this operation.
  373.  
  374.     DEL *.*
  375.  
  376. Delete the file named FILE1.TXT.
  377.  
  378.     ERASE FILE1.TXT
  379. %Dir
  380.                                                             Page 1 of 2
  381. @@PDisplays a list of file names in a disk directory.
  382. @@FDIR [d:][path][filename[.ext]] [/P][/W]
  383. @@R/P to pause after each screen
  384. /W to list in wide format across the screen
  385.  
  386. Use the /P parameter if there are more than 20 files to be
  387. displayed. This will prompt you to strike any key before it
  388. scrolls the files off the screen.
  389.  
  390. Use the /W parameter to display the files in wide format. However,
  391. this format will only display the file names.
  392. .page
  393.                                                             Page 2 of 2
  394. @@EShow all files in the current drive and directory.
  395.  
  396.     DIR
  397.  
  398. Show all files with the extension of .WP.
  399.  
  400.     DIR *.WP
  401.  
  402. Show all files on drive A.
  403.  
  404.     DIR A:
  405. %Diskcomp
  406.                                                             Page 1 of 2
  407. @@PCompares two floppy diskettes.
  408. @@F[d:][path]DISKCOMP [d:] [d:][/1][/8]
  409. @@R/1 One side only. The default is 2 sides.
  410. /8 Eight Sector. The default is 9 sectors.
  411.  
  412. Older versions of DOS only used one side of the diskette, and 8
  413. sectors per track. New versions use two sides of the disk, and 9
  414. sectors per track; this allows for more data to be stored on each
  415. diskette. The /1 and /8 parameters are not necessary with new
  416. versions of DOS.
  417. .page
  418.                                                             Page 2 of 2
  419. @@ECompare the double sided 9 sector diskettes in drives A and B.
  420.  
  421.     DISKCOMP A: B:
  422. %Diskcopy
  423.                                                             Page 1 of 2
  424. @@PDuplicates a complete floppy diskette.
  425. @@FDISKCOPY [d:] [d:][/1]
  426. @@R/1 Copy one side only.
  427.  
  428. The first drive [d:] is the source drive (copy from).
  429. The second drive [d:] is the target drive (copy to).
  430.  
  431. The DISKCOPY command will copy an entire diskette and format the
  432. destination disk if necessary. If you have only one disk drive,
  433. DISKCOPY will tell you when to change the disks.
  434. .page
  435.                                                             Page 2 of 2
  436. @@ROlder versions of DOS used only one side of the diskette, where
  437. new versions use two sides of the diskette; this allows for more
  438. data to be stored on each diskette. The /1 parameter is not
  439. necessary with new versions of DOS.
  440.  
  441. In general the DISKCOPY command is not a good method of copying
  442. diskettes because it preserves the often found inefficient ordering
  443. of data. Use the FORMAT and COPY commands instead.
  444.  
  445. Some commercial disks are copy protected. If this is the case, then
  446. DISKCOPY cannot complete the copy, or it will make a copy that does
  447. not work.
  448. @@ECopy the disk in drive A to drive B.
  449.  
  450.     DISKCOPY A: B:
  451. %Fastopen
  452.                                                             Page 1 of 2
  453. @@PTo assist DOS in searching for a file.
  454. @@F[d:][path]FASTOPEN d:[=nnn] ...
  455. @@Rd: specifies the disk drive for FASTOPEN to use.
  456. =nnn specifies how many file names FASTOPEN should keep in memory.
  457. The minimum is 10, and maximum is 999. The default is 34.
  458.  
  459. FASTOPEN stores in its memory, the directories and file names most
  460. recently used by programs and DOS. When accessing a file, FASTOPEN
  461. searches the memory list first, if the file is found it is a much
  462. faster search than searching the disk drive.
  463. .page
  464.                                                             Page 2 of 2
  465.  
  466. @@RFor each of the nnn files in the list, FASTOPEN needs 35 bytes of
  467. memory.
  468.  
  469. @@EInstall FASTOPEN for drive C with 100 file name capacity.
  470.  
  471.     FASTOPEN C:=100
  472. %Fdisk
  473.                                                             Page 1 of 1
  474. @@PPrepares a hard disk for formatting.
  475. @@F[d:][path]FDISK
  476. @@RA new hard disk is not usable until the surface has been
  477. partitioned and then formatted. FDISK does the partitioning. Then
  478. use the FORMAT command to format the disk. You only have to use the
  479. FDISK command once.
  480.  
  481.                          I*** WARNING ***I
  482.  
  483.         The FDISK command destroys all files on the disk!
  484.  
  485. See your DOS manual for more information on the FDISK command.
  486. %Find
  487.                                                             Page 1 of 2
  488. @@PSearches for a pattern of letters in a text file.
  489. @@F[d:][path]FIND [/V][/C][/N]"string" [[d:][path]filename[.ext]...]
  490. @@R/V All lines NOT containing "string" are displayed
  491. /C Display a count of the number of matches in the file
  492. /N Display the relative line number of each matching line
  493.  
  494. The characters to search for must be enclosed in quotation marks.
  495. .page
  496.                                                             Page 2 of 2
  497. @@EDisplay lines from the file PROG that DO NOT contain the letter F.
  498.  
  499.     FIND/V "F" PROG
  500.  
  501. Display how many lines in the file PROG that contain the name JOE.
  502.  
  503.     FIND/C "JOE" PROG
  504. %Format
  505.                                                             Page 1 of 4
  506. @@PPrepares a new disk.
  507. @@F[d:][path]FORMAT [d:][/S][/1][/8][/V][/B][/4][/N:xx][/T:yy]
  508. @@R/S will put COMMAND.COM on the disk
  509.  
  510. /1 formats the diskette as one-sided.
  511. /8 formats with eight sectors per track.
  512. /V will allow a volume label to be entered.
  513. /B leaves space on the disk for an operating system to be
  514. installed, with the SYS command, in the future.
  515. .page
  516.                                                             Page 2 of 4
  517. /4 to format a double sided disk in a high capacity drive.
  518. /N:xx is used to specify the number of sectors per track to format.
  519. /T:yy is used to specify the number of tracks to format.
  520.  
  521. A new disk, including a hard disk, must be prepared before it is
  522. used for the first time. This step is called formatting. The FORMAT
  523. command will destroy any information on the disk surface. Be
  524. careful not to accidentally format a valuable disk.
  525. .page
  526.                                                             Page 3 of 4
  527.  
  528.                          I*** WARNING ***I
  529.  
  530.         The FORMAT command destroys all files on the disk!
  531.  
  532. The following is a table of the parameters allowed for each type of
  533. disk:
  534.  
  535.              ┌────────────┬─────────────────────────┐
  536.              │   IDISKI     │   IPARAMETERS ALLOWEDI    │
  537.              ├────────────┼─────────────────────────┤
  538.              │ 160K/180K  │  /S, /V, /1, /8, /B, /4 │
  539.              │ 320K/360K  │  /S, /V, /1, /8, /B, /4 │
  540.              │ 720K/1.44M │  /S, /V, /N, /T         │
  541.              │ 1.2M       │  /S, /V, /N, /T         │
  542.              │ FIXED DISK │  /S, /V                 │
  543.              └────────────┴─────────────────────────┘
  544.  
  545. See your DOS manual for more information on the FORMAT command.
  546. .page
  547.                                                             Page 4 of 4
  548. @@EFormat the diskette in drive B.
  549.  
  550.     FORMAT B:
  551.  
  552. Format the disk in drive A and make it a startup disk.
  553.  
  554.     FORMAT A:/S
  555.  
  556. Format a 720K diskette in a 1.44M drive.
  557.  
  558.     FORMAT A:/N:9 /T:80
  559.  
  560. %Graftabl
  561.                                                             Page 1 of 1
  562. @@PLoads a table of additional character data for the color/graphics
  563. adapter into memory.
  564. @@F[d:][path]GRAFTABL [437|860|863|865|/STATUS]
  565. @@RUse GRAFTABL to display foreign language characters when in
  566. graphics mode on the color/graphics adapter.
  567.  
  568. See your DOS manual for more information on the GRAFTABL command.
  569. %Graphics
  570.                                                             Page 1 of 2
  571. @@PAllows the contents of a graphics screen to be printed on a
  572. printer which can print graphics.
  573. @@F[d:][path]GRAPHICS [printer type][/R][/B][/LCD]
  574. @@RPrinter type is one of the following:
  575.     COLOR1 - IBM PC Color Printer with black ribbon
  576.     COLOR4 - IBM PC Color Printer with RGB ribbon
  577.     COLOR8 - IBM PC Color Printer with CMY ribbon
  578.     COMPACT - IBM PC Compact Printer
  579.     GRAPHICS - IBM PC Graphics Printer or IBM Proprinter
  580.     THERMAL - IBM PC Convertible Printer
  581. .page
  582.                                                             Page 2 of 2
  583. @@R/R to print black and white as seen on the monitor. If you don't
  584. specify /R, the default is to print black as white, and white as
  585. black; this is the normal mode to print text to the printer.
  586.  
  587. /B to print the background color. This is only for printer types
  588. COLOR4 and COLOR8. If you don't specify /B, the default is NOT to
  589. print the background color.
  590.  
  591. /LCD to print the screen exactly as is appears on the IBM PC
  592. Convertible Liquid Crystal Display.
  593.  
  594. If you do not specify a printer, the default is the GRAPHICS
  595. printer.
  596. %Join
  597.                                                             Page 1 of 1
  598. @@PConnects a drive to a directory on another drive to produce a
  599. single directory structure from two separate directories.
  600. @@F[d:][path]JOIN d: d:\directory  or
  601. [d:][path]JOIN d: /D
  602. @@Rd: specifies the drive to be connected to a directory on another
  603. drive.
  604.  
  605. d:\directory specifies the directory that you will join a drive
  606. under. The directory must be at the root and only one level deep.
  607.  
  608. /D will disconnect a JOIN.
  609.  
  610. Refer to your DOS manual for more information on the JOIN command.
  611. %KEYB
  612.                                                             Page 1 of 1
  613. @@PLoads a keyboard program that replaces the keyboard program
  614. resident in the ROM BIOS. This will allow support of non-U.S.
  615. English keyboards.
  616. @@F[d:][path]KEY[xx[,yyy,[[d:][path]filename[.ext]]]]
  617. @Rxx specifies the keyboard code.
  618. yyy specifies the numeric code page which defines the character
  619. set.
  620. [[d:][path]filename] specifies the drive, path, and filename of the
  621. keyboard definition file.
  622.  
  623. See your DOS manual for more information on the KEYB command.
  624. %Label
  625.                                                             Page 1 of 2
  626. @@PAllows you to create, change or delete a volume label on a disk.
  627. @@F[d:][path]LABEL [d:][volume label]
  628. @@RIf no disk is specified, the current disk is used.
  629.  
  630. It is suggested that you label each of your disks with a volume
  631. label. This is sort of an electronic label to indicate what
  632. information is contained on the disk. A label can be put on the
  633. disk when you format it by using the FORMAT command with the /V
  634. parameter. However, you can also assign or change a disk label by
  635. using the LABEL command.
  636. .page
  637.                                                             Page 2 of 2
  638. @@ELABEL will show any label currently on the disk in drive A and ask
  639. if you want to change or delete the current label.
  640.  
  641.     LABEL A:
  642.  
  643. Make the volume label on the disk in drive A UTILS.
  644.  
  645.     LABEL A:UTILS
  646. %Mkdir (MD)
  647.                                                             Page 1 of 2
  648. @@PCreates a subdirectory on the specified disk.
  649. @@FMKDIR [d:]path  or  MD [d:]path
  650. @@RPath to specify the path of the directory name.
  651. @@ECreate a subdirectory named LEVEL1 under the current directory.
  652.  
  653.     MD LEVEL1
  654. .page
  655.                                                             Page 2 of 2
  656. @@ECreate a subdirectory named HELP under the root directory.
  657.  
  658.     MD \HELP
  659.  
  660. Create a subdirectory named LEVEL2 under the subdirectory named
  661. LEVEL1.
  662.  
  663.     MD \LEVEL1\LEVEL2
  664. %Mode
  665.                                                             Page 1 of 3
  666. @@PSet the way that a printer, a color/graphics monitor adapter, or
  667. asynchronous communications adapter operates.
  668. @@F[d:][path]MODE LPT#[:][n][,m][,P]]
  669.     # = 1, 2, or 3  (the printer number)
  670.     n = 80 or 132   (characters per line)
  671.     m = 6 or 8      (lines per inch)
  672.     P = continuous retry on time-out errors
  673.  
  674. [d:][path]MODE n  or  [d:][path]MODE [n],m[,T]
  675.     n = 40, 80, BW40, BW80, CO40, CO80, or MONO
  676.     m = R or L      (shift the display right or left)
  677.     T   requests a test pattern to align the display.
  678. .page
  679.                                                             Page 2 of 3
  680. @@F[d:][path]MODE LPT#[:]=COMn
  681.     # = 1, 2, or 3  (the printer number)
  682.     n = asynchronous communications adapter number
  683.  
  684. [d:][path]MODE COMn:baud[,parity][,databits[,stopbits[,P]]]
  685.     n = asynchronous communications adapter number
  686.     P = continuous retry on time-out errors
  687. @@RThe MODE command used in DOS Version 3.30 contains more
  688. commands. Refer to your DOS manual if you are using this version
  689. of DOS.
  690. .page
  691.                                                             Page 3 of 3
  692. @@ESet the screen to color mode with 80 columns
  693.  
  694.     MODE CO80
  695.  
  696. Set the first communications port to 1200 baud, no parity, 8 data
  697. bits, and 1 stopbit.
  698.  
  699.     MODE COM1:1200,N,8,1
  700.  
  701. Set the first parallel printer to 132 columns per line.
  702.  
  703.     MODE LPT1:132
  704. %More
  705.                                                             Page 1 of 1
  706. @@PStops the screen from scrolling when it is full.
  707. @@F[d:][path]MORE <input filename
  708. @@EDisplay the file SAMPLE.DAT on the screen and pause when each
  709. screen is full
  710.  
  711.     MORE <SAMPLE.DAT  or
  712.  
  713.     TYPE SAMPLE.DAT | MORE
  714. %Path
  715.                                                             Page 1 of 2
  716. @@PEstablishes a search path for program execution.
  717. @@FPATH [d:]path[[;[d:]path...]  or  PATH ;
  718. @@RA Hard disk is divided into subdirectories to make it more
  719. manageable. However, this type of structure has its advantages and
  720. disadvantages. When you want to run a program, you must know where
  721. the program is located in order for DOS to find it, and then run
  722. it. You can use the PATH command to tell DOS where to search for
  723. programs you want to run. You may specify a list of drives and
  724. pathnames, separated by semicolons. Then, when you enter a command
  725. that is not found in the current drive and directory, DOS will
  726. search all drives and directories, specified by the path, for that
  727. program file name.
  728. .page
  729.                                                             Page 2 of 2
  730. @@EShow the current path setting (if any).
  731.  
  732.     PATH
  733.  
  734. Tell DOS to search the current directory (default), then the ROOT
  735. directory, then the directory named UTILS.
  736.  
  737.     PATH C:;C:\UTILS
  738.  
  739. Remove all previous path settings.
  740.  
  741.     PATH ;
  742. %Print
  743.                                                             Page 1 of 3
  744. @@PPrints a queue (a list) of data files on the printer while you
  745. are doing other jobs on the computer.
  746. @@F[d:][path]PRINT [/D:device][/B:buffsize][/U:busytick][/M:maxtick]
  747. [/S:timeslice][/Q:quesize][/C][/T][/P]
  748. [[d:][path][filename][.ext]...]
  749. @@R/D:device to specify a print device. Default is PRN.
  750.  
  751. /B:buffsize to set the size in bytes of the internal buffer.
  752. Default is 512 bytes.
  753.  
  754. /Q:quesize to specify how many files can print a one time. Default
  755. is 32 files.
  756. .page
  757.                                                             Page 2 of 3
  758. @@R/S:timeslice to specify the time-slice value. Default is 8 slices.
  759. The range is 1 to 255.
  760.  
  761. /U:busytick to specify the number of clock ticks that PRINT will
  762. wait until the print device is available. Default is 1.
  763.  
  764. /M:maxtick to specify how many clock ticks PRINT can have to print
  765. characters to the printer. Default is 2. The range is 1 to 255.
  766.  
  767. /T to set the terminate mode. All queued file are canceled from the
  768. print queue.
  769.  
  770. /C to set the cancel mode. Allows you to select which files to
  771. cancel.
  772. .page
  773.                                                             Page 3 of 3
  774. @@R/P sets the print mode. The preceding filename and all following
  775. filenames are added to the print queue until a /C is found on the
  776. command line, or until you press Enter.
  777. @@EPrint all files with the extension .TXT in the current directory.
  778.  
  779.     PRINT *.TXT
  780. %Prompt
  781.                                                             Page 1 of 2
  782. @@PEstablishes a DOS command line prompt.
  783. @@FPROMPT [prompt-text]
  784. @@RWhere prompt-text specifies the new text for the DOS prompt. This
  785. can contain special characters that are in the form $p. These
  786. special characters are as follows:
  787.  
  788. $  the $ character                  l  the < character
  789. t  the time                         b  the | character
  790. d  the date                         q  the = character
  791. p  the current directory            h  the backspace character
  792. v  the DOS version number           e  the ESCape character
  793. n  the default drive letter         _  the CR LF sequence
  794. g  the > character
  795. .page
  796.                                                             Page 2 of 2
  797. @@RThe initial DOS prompt gives you the drive letter followed by the >
  798. character. However, the prompt can be changed to something else,
  799. which you may prefer over the default DOS prompt. A popular prompt
  800. is the $p$g prompt. This makes the prompt the current drive letter,
  801. plus the current directory, and then the > character. This is
  802. useful when using a hard disk with several subdirectories.
  803.  
  804. You can get very creative with the PROMPT command.
  805. @@EMake the DOS prompt the current directory name and the greater than
  806. sign (C:\UTILS>).
  807.  
  808.     PROMPT $P$G
  809.  
  810. Make the prompt the system time and date.
  811.  
  812.     PROMPT $T$D
  813. %Rename
  814.                                                             Page 1 of 1
  815. @@PRenames a disk file.
  816. @@FREN[AME] [d:][path]filename[.ext] filename[.ext]
  817. @@RThe RENAME command changes the name of a disk file. Only the name
  818. is changed; the file itself is not altered. The wild card symbols,
  819. ? and *, may be used, but they should occur in identical positions
  820. in both names or only be used in one name.
  821. @@ERename all files named JOE with any extension to JIM with the same
  822. extension.
  823.  
  824.     RENAME JOE.* JIM.*
  825. %Replace
  826.                                                             Page 1 of 2
  827. @@PSelectively replaces files on the target with files of the same
  828. name from the source.
  829. @@F[d:][path]REPLACE [d:][path]filename[.ext]
  830. [d:][path] [/A][/P][/R][/S][/W]
  831. @@R/A tells REPLACE to copy all files specified by the source that
  832. do not exist on the target. This allows you to add files to the
  833. target without overwriting files that may already exist.
  834. /P prompts you as each file is found on the target disk.
  835. /R replaces files that are read-only on the target disk.
  836. /S searches all subdirectories of the target disk.
  837. /W instructs REPLACE to wait until you insert a disk.
  838. .page
  839.                                                             Page 2 of 2
  840. @@EReplace all files named JOE.TXT on your fixed disk drive C from
  841. your floppy drive A.
  842.  
  843.     REPLACE A:JOE.TXT C:\ /S
  844. %Restore
  845.                                                             Page 1 of 2
  846. @@PRestores one or more backed up files from one disk to another disk.
  847. @@F[d:][path]RESTORE d: [d:][path][filename][.ext][/S][/P]
  848. [/B:mm-dd-yy][/A:mm-dd-yy][/M][/N][/L:time][/E:time]
  849. @@R/S Backed up files in all subdirectories will be restored.
  850. /P Prompt before restoring files that have changed since backup.
  851. /B:mm-dd-yy to restore all files modified on or before the date
  852. specified.
  853. /A:mm-dd-yy to restore all files on or after the date specified.
  854. /M to restore files modified or deleted since they were last backed
  855. up.
  856. /N to restore files that no longer exist on the target disk.
  857. .page
  858.                                                             Page 2 of 2
  859. @@R/L restores files that were modified at or later than the given
  860. time.
  861. /E restores files that were modified at or earlier than the date
  862. given.
  863.  
  864. Note: The files must have been saved to diskette with the BACKUP
  865. command.
  866.  
  867. See your DOS manual for more information on the RESTORE command.
  868. @@ERestore all files from the backup diskettes to the hard disk
  869. drive C.
  870.  
  871.     RESTORE A: C:\*.* /S
  872. %Rmdir (RD)
  873.                                                             Page 1 of 1
  874. @@PDeletes a subdirectory from the disk.
  875. @@FRMDIR [d:]path  or  RD [d:]path
  876. @@RThis command removes a subdirectory from the disk, but only after
  877. all the files have been deleted with the DEL command. Some programs
  878. write hidden files that cannot be deleted with the DEL command.
  879. Then the RD command will not work on this subdirectory.
  880. @@EDelete the subdirectory named UTILS.
  881.  
  882.     RD \UTILS
  883. %Select
  884.                                                             Page 1 of 3
  885. @@PAllows you to select the keyboard layout and the date and time
  886. format.
  887. @@F[d:][path]SELECT xxx yy
  888. @@Rxxx specifies the country code. The country code tells DOS the date
  889. and time format. It also tells DOS the currency symbol.
  890.  
  891. yy specifies the keyboard code. The keyboard code tells DOS which
  892. keyboard layout you want to use.
  893. .page
  894.                                                             Page 2 of 3
  895. @@RChoose the value of xxx and yy from the following table:
  896.  
  897.              ┌────────────────┬───────────────────┐
  898.              │                │ ICountry  KeyboardI │
  899.              │ ICountryI        │ ICode     CodeI     │
  900.              ├────────────────┼───────────────────┤
  901.              │ United States  │  001      US      │
  902.              │ France         │  033      FR      │
  903.              │ Spain          │  034      SP      │
  904.              │ Italy          │  039      IT      │
  905.              │ United Kingdom │  044      UK      │
  906.              │ Germany        │  049      GR      │
  907.              └────────────────┴───────────────────┘
  908. .page
  909.                                                             Page 3 of 3
  910.  
  911.   ICAUTION: With DOS 3.30, the SELECT command is used for a
  912.   different purpose. It is used to format a new disk, and install the
  913.   keyboard layout and date/time format. With DOS 3.30, this command
  914.   will destroy all data on your disk.I
  915.  
  916. @@ESelect country code and keyboard code to the United Kingdom.
  917.  
  918.     SELECT 044 UK
  919. %Set
  920.                                                             Page 1 of 2
  921. @@PThis command will insert strings into the command processors
  922. environment. A copy of this environment is made available to any
  923. program running.
  924. @@FSET [name=[parameter]]
  925. @@RThe entire string is inserted into the environment block. All
  926. lowercase letters are converted to uppercase when inserted into the
  927. block. If the name already exists in the environment, it will be
  928. replaced with the new string.
  929.  
  930. If you type SET without any parameters, it will show you the
  931. environment block strings.
  932. .page
  933.                                                             Page 2 of 2
  934. @@RIf name is specified without anything after the equal sign, then
  935. that name string will be deleted from the current environment
  936. block.
  937. @@EPlace a string associated with LIB into the environment block.
  938.  
  939.     SET LIB=C:\TURBOC\LIB
  940.  
  941. Erase the previous string entered.
  942.  
  943.     SET LIB=
  944. %Share
  945.                                                             Page 1 of 1
  946. @@PLoads support for file sharing.
  947. @@F[d:][path]SHARE [/F:filespace][/L:locks]
  948. @@R/F:filespace is to allocate file space in bytes for the area used
  949. for recording the information necessary for file sharing. Each open
  950. file requires the length of the full filename plus 11 bytes. The
  951. default is 2048 bytes.
  952.  
  953. /L:locks is to allocate space for the number of locks you want. The
  954. default value is 20 locks.
  955.  
  956. See your DOS manual for more information on the SHARE command.
  957. %Sort
  958.                                                             Page 1 of 2
  959. @@PReads data from the standard input device, sorts the data, and
  960. then writes it to the standard output device.
  961. @@F[d:][path]SORT [/R][/+n]
  962. @@R/R to sort in reverse order
  963. /+n to sort based on the characters in column n
  964. .page
  965.                                                             Page 2 of 2
  966. @@ERead the file UNSORT.TXT, sort its records starting on column 1,
  967. and write the sorted output to a file name SORT.TXT.
  968.  
  969.     SORT /R <UNSORT.TXT >SORT.TXT
  970.  
  971. Produce a directory listing sorted by file size (file size starts
  972. in column 14).
  973.  
  974.     DIR | SORT /+14
  975. %Subst
  976.                                                             Page 1 of 2
  977. @@PEstablishes a subdirectory as a separate disk.
  978. @@F[d:][path]SUBST d: d:path  or
  979. [d:][path]SUBST d: /D  or
  980. [d:][path]SUBST
  981. @@Rd: specifies the drive letter that you want to use to refer to
  982. another drive or path.
  983.  
  984. d:path specifies the drive or path that you want to refer to with
  985. a nickname. The path must start from the root directory.
  986. .page
  987.                                                             Page 2 of 2
  988. @@R/D to delete a substitution. You must specify the drive letter of
  989. the drive whose substitution you want to delete.
  990.  
  991. Some older programs do not support the use of subdirectories, they
  992. expect their data to be on a specific drive. In such a case, you
  993. can instruct DOS to treat a subdirectory as a different drive name.
  994. Then you can tell the program to use this drive name to access its
  995. data files.
  996. @@ESubstitute drive D for the subdirectory \WP on drive C.
  997.  
  998.     SUBST D: C:\WP
  999. %SYS
  1000.                                                             Page 1 of 2
  1001. @@PTransfers a copy of the operating system files from the default
  1002. drive to the specified drive.
  1003. @@F[d:][path]SYS d:
  1004. @@Rd: specifies the drive to transfer the DOS system files onto.
  1005.  
  1006. The FORMAT command will place two hidden files on a disk, if you
  1007. use it with the /S parameter. This will make the disk a startup
  1008. disk. However, when a new version of DOS becomes available, you can
  1009. upgrade without having to reformat the disk and lose your data.
  1010. This is most useful when transferring a new version of DOS onto a
  1011. hard disk.
  1012. .page
  1013.                                                             Page 2 of 2
  1014. @@RBoot the computer with the new DOS version floppy in drive A. Then
  1015. give the SYS command to copy the new version of DOS to your hard
  1016. disk, or floppy disk that already has a copy of DOS. You cannot use
  1017. the SYS command to place the DOS files on a disk that was formatted
  1018. without the /S parameter.
  1019.  
  1020. Note: The SYS command does not copy the COMMAND.COM file.
  1021. @@ETransfer the operating system to drive A.
  1022.  
  1023.     SYS A:
  1024. %Time
  1025.                                                             Page 1 of 2
  1026. @@PSet or display the current system time.
  1027. @@F TIME [hh:mm[:ss[.xx]]]
  1028. @@Rhh to specify the hour
  1029. mm to specify the minutes
  1030. ss to specify the seconds
  1031. xx to specify the hundredths of seconds.
  1032.  
  1033. TIME with no parameters shows the current time and asks for new
  1034. time.
  1035. .page
  1036.                                                             Page 2 of 2
  1037. @@ESet the time to noon.
  1038.  
  1039.     TIME 12:00:00
  1040. %Tree
  1041.                                                             Page 1 of 2
  1042. @@PDisplays all directory paths found on the specified drive.
  1043. @@F[d:][path]TREE [d:][/F]
  1044. @@Rd: specifies the drive whose tree is to be displayed
  1045. /F to also display the names of files in all directories
  1046.  
  1047. When there are many subdirectories and files on a hard disk, it is
  1048. difficult to visualize where everything is and how to move from
  1049. place to place. The TREE command is designed to show the
  1050. organization of the disk. Unfortunately, this program does not give
  1051. a good graphic picture of the subdirectory structure of a disk.
  1052. Several commercial programs are available that will create a
  1053. graphic display of the disk tree structure.
  1054. .page
  1055.                                                             Page 2 of 2
  1056. @@EShow the directory tree for disk C.
  1057.  
  1058.     TREE C:
  1059.  
  1060. The same as above but it also shows all files on drive C.
  1061.  
  1062.     TREE C:/F
  1063. %Type
  1064.                                                             Page 1 of 2
  1065. @@PDisplay a text file to the standard output device.
  1066. @@FTYPE [d:][path]filename[.ext]
  1067. @@RGlobal filename character are NOT allowed.
  1068.  
  1069. The TYPE command will display the contents of a text file on the
  1070. video screen (standard output). The standard output redirection
  1071. command may be used to redirect the displayed output to another
  1072. file or the printer.
  1073. .page
  1074.                                                             Page 2 of 2
  1075. @@EDisplay the contents of LETTER.TXT to the screen.
  1076.  
  1077.     TYPE LETTER.TXT
  1078.  
  1079. Display the contents of LETTER.TXT to the printer using the
  1080. standard output device redirection command.
  1081.  
  1082.     TYPE LETTER.TXT >PRN
  1083. %Ver
  1084.                                                             Page 1 of 1
  1085. @@PDisplays the DOS version number.
  1086. @@FVER
  1087. @@RThe DOS version consists of a single digit major version number,
  1088. followed by a period, then a two digit minor version number.
  1089. @@EDisplay the DOS version number you are using. Example is: IBM
  1090. Personal Computer DOS Version 3.10.
  1091.  
  1092.     VER
  1093. %Verify
  1094.                                                             Page 1 of 2
  1095. @@PSets DOS into the verify mode.
  1096. @@FVERIFY [ON | OFF]
  1097. @@RVERIFY without parameters shows the current setting of the verify
  1098. mode.
  1099.  
  1100. If the VERIFY mode is set to ON, DOS will verify any data when it
  1101. is written to the disk. If the data cannot be read back from the
  1102. disk, DOS will generate an error message at that time. This will
  1103. allow you to see that a disk is damaged, replace the disk, and save
  1104. your data to the new disk.
  1105. .page
  1106.                                                             Page 2 of 2
  1107. @@ESet the verify mode to ON.
  1108.  
  1109.     VERIFY ON
  1110. %Vol
  1111.                                                             Page 1 of 1
  1112. @@PDisplays the disk volume label information.
  1113. @@FVOL [d:]
  1114. @@RIf you do not specify a drive, the default drive is used.
  1115. @@EShow the volume label for the default drive.
  1116.  
  1117.     VOL
  1118. Show the volume label for the disk in drive A.
  1119.  
  1120.     VOL A:
  1121. %XCOPY
  1122.                                                             Page 1 of 2
  1123. @@PSelectively copy groups of files.
  1124. @@F[d:][path]XCOPY [d:][path]filename[.ext]
  1125. [d:][path][filename[.ext]] [/A][/D:mm-dd-yy][/E][/M][/P][/S][/V][/W]
  1126. @@RThe source specification is first, the target is second.
  1127.  
  1128. /A copies only files with the archive bit set, meaning they have
  1129. changed since last copied with BACKUP or XCOPY /M.
  1130. /D:mm-dd-yy copies files whose date is the same or later than the
  1131. date specified.
  1132. /E creates subdirectories on the target disk even if they will be
  1133. empty. Otherwise XCOPY will not create an empty subdirectory.
  1134. .page
  1135.                                                             Page 2 of 2
  1136.  
  1137. /M copies only files with the archive bit set, but will clear the
  1138. archive bit after it is copied. This is much like the BACKUP command.
  1139. /P prompts you before copying each file.
  1140. /S copies files in all subdirectories under the current directory.
  1141. /V tells XCOPY to verify that each file has been copied correctly,
  1142. much like the /V parameter in the COPY command.
  1143. /W tells XCOPY to wait for you to insert a disk.
  1144. @@EUse XCOPY to copy all files named JOE.TXT with the archive bit
  1145. set from drive C to drive A, then clear the archive bit to indicate
  1146. that it has been copied.
  1147.  
  1148.     XCOPY C:JOE.TXT A: /M
  1149.  
  1150. Same as the above example, but copies all files in the directories
  1151. under the current directory on drive C.
  1152.  
  1153.     XCOPY C:JOE.TXT A: /M/S
  1154. %Hard Disk Preparation
  1155.                                                             Page 1 of 17
  1156.                 I>>> HOW TO SET UP A HARD DISK <<<I
  1157.  
  1158. A new hard disk must be partitioned and formatted before it can be
  1159. used. These two steps may have been done at the dealer before you
  1160. picked up the computer. But, if you purchased it from mail order or
  1161. directly from IBM, it may not have been prepared for use. If you
  1162. are not sure, it does no harm to format your hard disk a second
  1163. time if there are NO programs on it.
  1164.  
  1165. If you have a hard disk that is 20 megabytes or more, be sure to
  1166. use DOS version 3.0 or later. DOS version 2.0 is very inefficient;
  1167. it will waste a large part of your hard disk space.
  1168. .page
  1169.                                                             Page 2 of 17
  1170.                  I* PARTITIONING YOUR HARD DISK *I
  1171.  
  1172. There are several different disk operating systems you can run
  1173. on your computer. DOS is the most popular. DOS will allow you to
  1174. partition your hard disk so that each different disk operating
  1175. system you use can work in a different part of the hard disk. If
  1176. you only want to use DOS, which is usually the case, you will want
  1177. the disk to be only one partition.
  1178.  
  1179. You must use the FDISK program to partition your hard disk before
  1180. it can be used or formatted. This program must be run even if you
  1181. are only going to use one operating system, DOS.
  1182.  
  1183. 1. Put the main DOS disk in drive A and turn on the computer.
  1184.  
  1185. 2. Partition the hard disk by giving the command
  1186.  
  1187.         FDISK
  1188.  
  1189. and pressing the Return key. You will be presented with a menu.
  1190. .page
  1191.                                                             Page 3 of 17
  1192.  
  1193. 3. Press the Return key to select the first item, which is the
  1194. default value. On the next screen, you will see the line
  1195.  
  1196.         Create DOS Partition
  1197.  
  1198. If you also see the lines
  1199.  
  1200.         Do you wish to use the entire fixed
  1201.         disk for DOS[Y/N]..............?[Y]
  1202.  
  1203. it means that your hard drive has not been partitioned.
  1204.  
  1205. 4. Press the Return key to select the default of Y. Then DOS can
  1206. use the entire hard disk.
  1207.  
  1208. 5. The following message appears:
  1209.  
  1210.         Insert DOS diskette in drive A:
  1211.         Press any key when ready...
  1212.  
  1213. 6. Press the Return key.
  1214. .page
  1215.                                                             Page 4 of 17
  1216.                   I* FORMATTING YOUR HARD DISK *I
  1217.  
  1218. Now that your hard disk has been partitioned, it must be formatted.
  1219. Be careful not to format your system disk in drive A. Run the
  1220. format program as described below.
  1221.  
  1222. 1. Enter the command
  1223.  
  1224.         FORMAT C:/S/V
  1225.  
  1226. The FORMAT program will destroy all the data on the disk. You must
  1227. be careful not to accidentally format a good disk, especially a
  1228. hard disk that holds a large amount of information. Therefore, when
  1229. you try to format a hard disk, newer versions of the FORMAT program
  1230. will give you a warning message when you try to format a hard disk.
  1231. .page
  1232.                                                             Page 5 of 17
  1233. 2. When you see the message
  1234.  
  1235.         Warning: All Data on NON_removable
  1236.         Disk Drive C: Will be Lost!
  1237.         Proceed with Format (Y/N)?
  1238.  
  1239. type
  1240.  
  1241.         Y
  1242.  
  1243. and press the Return key. The message
  1244.  
  1245.         Formatting...
  1246.  
  1247. appears on the screen and the red light on the hard disk will come
  1248. on. This should be the only time you have to format your hard
  1249. disk. This process may take several minutes. The /S parameter in
  1250. the FORMAT command adds a copy of the DOS system files to the hard
  1251. disk when it is finished formatting. Then you will be able to start
  1252. the computer from the hard disk without having to use floppies.
  1253. .page
  1254.                                                             Page 6 of 17
  1255.  
  1256. 3. When you give the /V parameter, you tell the FORMAT program
  1257. that you want to place a Volume Label on the disk after formatting.
  1258. You will see the line
  1259.  
  1260.         Volume label(11 characters, ENTER for none)?
  1261.  
  1262. Type something that identifies your computer such as your name,
  1263. department name, or office number. Of course, a disk name is more
  1264. useful for removable media like a floppy disk that can easily be
  1265. mixed up.
  1266.  
  1267. After the formatting has finished and you have selected a volume
  1268. name, you will see a summary of how your hard disk space is being used.
  1269.  
  1270. This summary includes the total disk space, the space taken up by
  1271. the DOS system files, and the number of unusable locations on the
  1272. disk. The number of bad locations should be recorded in a notebook
  1273. for future reference. If a printer is attached, turn it on. Hold
  1274. down the shift key and press the PrtSc key to obtain a printout of
  1275. this information on the screen.
  1276. .page
  1277.                                                             Page 7 of 17
  1278.                   I* ESTABLISHING SUBDIRECTORIES *I
  1279.  
  1280. Now that the hard disk has been partitioned and formatted, and it
  1281. contains a copy of the DOS system files, it is ready for your files.
  1282.  
  1283. A hard disk can hold many files. Therefore you must establish a
  1284. systematic way to locate the information you want. If there are
  1285. several hundred files in one directory, the listing of the file
  1286. names would be very long. It would also take quite a while to search
  1287. through the listing because it is usually in random order.
  1288.  
  1289. If you divide the hard disk into separate areas, you can keep
  1290. related files together. While there are several ways to organize a hard
  1291. disk, here is one simple but useful method. Use the main area called
  1292. the root directory only for a few essential programs. Then establish
  1293. auxiliary directories from the root directory. The auxiliary
  1294. directories are called subdirectories. This type of disk structure
  1295. is called a tree.
  1296. .page
  1297.                                                             Page 8 of 17
  1298.  
  1299. Each subdirectory can contain files for a particular subject. The
  1300. name of a subdirectory, like the name of a disk, consists of 1 to
  1301. 11 characters, including uppercase letters, hyphens, and
  1302. underlines. If you type the name in lowercase letters, they are
  1303. converted to uppercase. You might want to have one subdirectory for
  1304. each staff member in an office - one named JOHN, another named
  1305. SHARON, and so forth. Subdirectory names can also be chosen by
  1306. subject; for example, REPORT for reports, MEMOS for memos, PURCHASE
  1307. for purchase orders, and so on. There can be directories named
  1308. after the programs they contain; for example, LOTUS, PASCAL, DBASE,
  1309. BASIC, WP (for Word Perfect).
  1310.  
  1311. Make the default disk the newly formatted hard disk C by giving the
  1312. command
  1313.  
  1314.         C:
  1315.  
  1316. and press the Return key.
  1317. .page
  1318.                                                             Page 9 of 17
  1319.  
  1320. This makes the root directory of the hard disk the current one.
  1321. This directory now contains the three DOS files placed there by the
  1322. FORMAT command. Two of these files are hidden because they are only
  1323. used by your computer. The other file is named COMMAND.COM.
  1324.  
  1325. You create a subdirectory with the DOS command Mkdir, or MD. Now
  1326. any directory you create will be a subdirectory of the root
  1327. directory because the root directory is the current directory. It
  1328. is possible to make a subdirectory of a subdirectory by making the
  1329. subdirectory the current directory and then giving the MD command
  1330. from there. However, you will generally find it easier to use only
  1331. single level subdirectories. That is, you should create all your
  1332. subdirectories from the root directory, if possible.
  1333.  
  1334. When you give the MD command, the new directory becomes a
  1335. subdirectory of the current directory. Therefore, if you want to
  1336. have only one level of subdirectory, you must be certain that the
  1337. root directory is the current directory before giving the MD
  1338. .page
  1339.                                                             Page 10 of 17
  1340. command. For example, if you give the commands
  1341.  
  1342.         MD JOHN
  1343.         MD SHARON
  1344.  
  1345. when the root directory is current, both will be subdirectories of
  1346. the root directory. On the other hand, suppose that you gave the MD
  1347. command to create a subdirectory named SHARON while the
  1348. subdirectory named JOHN was the current directory. Then the
  1349. subdirectory SHARON will be a subdirectory of JOHN.
  1350.  
  1351. To ensure that the root directory is the current directory, give
  1352. the command
  1353.  
  1354.         CD\
  1355.  
  1356. (for Change Directory).
  1357.  
  1358. Notice that a backslash is used in these commands. The backslash
  1359. character means that a subdirectory name will follow. The special
  1360. form CD\ refers to the root directory.
  1361. .page
  1362.                                                             Page 11 of 17
  1363.  
  1364. This figure is a graphic display of what a hard disk "tree"
  1365. structure might look like. There are two subdirectories under the
  1366. root directory; WORD PROCESS and LANGUAGES. Under each if these
  1367. subdirectories are two more subdirectories.
  1368.  
  1369.  
  1370.                         ┌────────────────┐
  1371.                         │      IROOTI      │
  1372.                         └───────┬────────┘
  1373.                                 │
  1374.                ┌────────────────┴───────────────┐
  1375.         ┌──────┴───────┐                   ┌────┴──────┐
  1376.         │ WORD PROCESS │                   │ LANGUAGES │
  1377.         └──────┬───────┘                   └────┬──────┘
  1378.                │                                │
  1379.      ┌─────────┴───────┐              ┌─────────┴───────────┐
  1380.  ┌───┴───┐       ┌─────┴─────┐     ┌──┴────┐          ┌─────┴─────┐
  1381.  │  WP   │       │ WORD STAR │     │ LOTUS │          │   BASIC   │
  1382.  └───────┘       └───────────┘     └───────┘          └───────────┘
  1383. .page
  1384.                                                             Page 12 of 17
  1385.  
  1386.                  I* Creating a DOS Subdirectory *I
  1387.  
  1388. We will now create a subdirectory to contain the programs on the
  1389. two original DOS disks. Then you will copy these programs from the
  1390. floppy disks to the hard disk.
  1391.  
  1392. 1. Give the command
  1393.  
  1394.         C:
  1395.  
  1396. if C is not the current drive.
  1397.  
  1398. 2. Give the command
  1399.  
  1400.         CD\
  1401.  
  1402. to ensure that the root directory is the current directory.
  1403. .page
  1404.                                                             Page 13 of 17
  1405.  
  1406. 3. Create a new subdirectory by giving the command
  1407.  
  1408.         MD DOS
  1409.  
  1410. Be sure to put a space between the command and its parameter. This
  1411. command has now established a subdirectory named DOS.
  1412.  
  1413. 4. Now make the new directory the current directory by giving the
  1414. command
  1415.  
  1416.         CD DOS
  1417.  
  1418.         or CD \DOS
  1419.  
  1420. These two commands do the same thing--this time. However, they have
  1421. different meanings. The first command refers to a subdirectory of
  1422. the current directory; the second command refers to a subdirectory
  1423. of the root directory. If a subdirectory named JOHN were current
  1424. and you gave the first command, DOS would try to find a
  1425. .page
  1426.                                                             Page 14 of 17
  1427.  
  1428. subdirectory named DOS belonging to JOHN. The second command makes
  1429. the root directory current first and then moves to the requested
  1430. subdirectory.
  1431.  
  1432. 5. The subdirectory named DOS is now current. Make a listing to see
  1433. what it contains by typing
  1434.  
  1435.         DIR
  1436.  
  1437. You will see the following information on your screen:
  1438.  
  1439.         Volume in drive C is PERSONNEL
  1440.         Directory of C:\DOS
  1441.  
  1442.         . <DIR> 12-25-87  1:00p
  1443.         ..<DIR> 12-25-87  1:00p
  1444.  
  1445. You can see that this is a listing of subdirectory DOS on drive C
  1446. .page
  1447.                                                             Page 15 of 17
  1448.  
  1449. that is named PERSONNEL. No files are shown. But there are two
  1450. directory entries that do not seem to have names. One name consists
  1451. of a single dot and the other a double dot. These two entries are
  1452. part of a subdirectory listing (but not the root directory); they
  1453. contain information DOS needs. The double dot identifies the parent
  1454. directory, that is, the directory this subdirectory was created
  1455. under. The single dot refers to the current directory.
  1456.  
  1457. 7. Now type
  1458.  
  1459.         DIR ..
  1460.  
  1461. you will see a directory listing of the parent directory (the root
  1462. directory in this example).
  1463.  
  1464. Now that we have created the DOS subdirectory and have made it the
  1465. current directory, we can copy the files from the original DOS disk
  1466. in drive A with the command
  1467.  
  1468.         COPY A:*.*
  1469. .page
  1470.                                                             Page 16 of 17
  1471.  
  1472. This will copy all files on the disk in drive A to the current
  1473. directory on the current drive, which in this example is not
  1474. C:\DOS.
  1475. .page
  1476.                                                             Page 17 of 17
  1477.  
  1478. In this section you have learned how to prepare your hard disk for
  1479. use. This included partitioning and formatting the hard disk, then
  1480. copying files from your DOS disk into your new DOS subdirectory.
  1481.  
  1482. This method of using subdirectories is widely used in the computer
  1483. world. It makes listing and working with files much easier. You
  1484. should make subdirectories for each of your different types of
  1485. programming files.
  1486. %Floppy Disk Preparation
  1487.                                                             Page 1 of 9
  1488.                I>>> HOW TO SET UP A FLOPPY DISK <<<I
  1489.  
  1490. Before you can write information to a new floppy disk, you must
  1491. prepare the surface of the new disk so it contains a magnetic
  1492. pattern that your computer can understand. This step is called
  1493. formatting. The FORMAT program is located on your DOS system disk.
  1494. You only need to format a disk once. However, it does not harm a
  1495. disk to format it more than once.
  1496.  
  1497. 1. To format a disk, you must first place the DOS system disk with
  1498. the FORMAT program on it in drive A.
  1499.  
  1500. 2. If the prompt is not A>, make drive A the current drive with the
  1501. command
  1502.  
  1503.         A:
  1504.  
  1505. Don't forget to press the Return key.
  1506. .page
  1507.                                                             Page 2 of 9
  1508. 3. Give the command
  1509.  
  1510.         DIR FORMAT.COM
  1511.  
  1512. to check the directory of this disk for the FORMAT program.
  1513.  
  1514. 4. If the next-to-last line on the video screen is
  1515.  
  1516.         File not found
  1517.  
  1518. DIR could not locate the FORMAT program on the disk. Check to see
  1519. that you have your system disk in drive A. On the other hand, if
  1520. DIR has found the FORMAT program, the following message appears
  1521. indicating that the formatting program is present:
  1522.  
  1523.         FORMAT.COM  9398 1-01-86  9:39a
  1524.  
  1525. If the FORMAT program is present, you can start it up. But first
  1526. let's check a few things.
  1527. .page
  1528.                                                             Page 3 of 9
  1529.  
  1530. The formatting program will destroy any information previously
  1531. recorded on the disk. Therefore, be sure to use a new disk or one
  1532. that does not contain information you want to keep. Be careful not
  1533. to format your system disk accidentally. The formatting process has
  1534. two stages to reduce the chances of formatting the wrong disk.
  1535. First, the formatting program is copied into memory and started up.
  1536. Then it waits for you to change disks. When you have the proper
  1537. disks in place, you can tell the program to begin. The command you
  1538. give to format a disk depends on how many disk drives you have.
  1539. .page
  1540.                                                             Page 4 of 9
  1541.                        I- Using One Drive -I
  1542.  
  1543. The following method can be used to format a disk on any type of
  1544. computer no matter how many drives you have. However, if you have
  1545. only one disk drive, you must use this method.
  1546.  
  1547. 1. Give the command
  1548.  
  1549.         FORMAT A:/S/V
  1550.  
  1551. and DOS will copy the formatting program into memory. The first
  1552. word tells DOS to run the program named FORMAT. The rest of the
  1553. line gives information to the FORMAT program: the A: tells the
  1554. program to prepare the disk in drive A, the /S symbol specifies a
  1555. system disk, and the /V symbol says you want to choose a label or
  1556. volume name. The volume label on a disk is like the name on a file
  1557. folder; it reminds you what is on the disk. If you omit the /V
  1558. switch, there will be no volume name assigned to the disk.
  1559. .page
  1560.                                                             Page 5 of 9
  1561. The FORMAT program will first display the following message:
  1562.  
  1563.         Insert new diskette for drive A:
  1564.         and strike ENTER when ready
  1565.  
  1566. It then waits for your command. This gives you a chance to change
  1567. disks.
  1568.  
  1569. 2. Remove the DOS system disk from drive A and replace it with the
  1570. new disk to be formatted.
  1571.  
  1572. 3. Press the Return (or ENTER) key. You will see the message
  1573.  
  1574.         Formatting...
  1575.  
  1576. displayed and you may hear a clanking sound as the new disk is
  1577. formatted. After a few minutes, the following message will appear:
  1578.  
  1579.         Format complete
  1580.         System transfered
  1581.         Volume label(11 characters, ENTER for none)?
  1582. .page
  1583.                                                             Page 6 of 9
  1584.  
  1585. The FORMAT program wants you to specify a volume label. Just press
  1586. ENTER if you don't want to assign a volume label to the new disk.
  1587.  
  1588. 4. Type the label you want to assign to the disk, or just press
  1589. ENTER for no label. The label may be any name of 11 characters or
  1590. less, including spaces. This name should be something that specifies
  1591. what is going to be placed on the disk. After placing the volume
  1592. label on the new disk, the following message will appear:
  1593.  
  1594.         362496 bytes total disk space
  1595.          69632 bytes used by system
  1596.         292864 bytes available on disk
  1597.  
  1598. The first line shows that there are 362K bytes of space on the
  1599. disk, but nearly 70K bytes are being used by the DOS system files
  1600. because you included the /S parameter.
  1601.  
  1602. Look carefully on your screen for a line that reads
  1603.  
  1604.         xxxx bytes in bad sectors
  1605. .page
  1606.                                                             Page 7 of 9
  1607.  
  1608. You should rarely see a line like this one. However, if this line
  1609. does appear, it means that you have defective areas on your disk.
  1610. These bad areas have been marked as "bad" by the FORMAT program,
  1611. and will not be used by DOS to store information. However, if there
  1612. are a significant amount of bad sectors, you may want to destroy
  1613. that disk and format a new one.
  1614.  
  1615. The FORMAT program will now give the message
  1616.  
  1617.         Format another (Y/N)?
  1618.  
  1619. If you want to format another disk, take out the newly formatted
  1620. disk and replace it with another new disk. Then press the Y key and
  1621. the Return key. You can continue this way until you are finished
  1622. formatting your new disks. Then press the N key and the Return key.
  1623. .page
  1624.                                                             Page 8 of 9
  1625.                       I- Using Two Drives -I
  1626.  
  1627. If you have more than one floppy disk, it is easier and safer to
  1628. use both drives when formatting new disks. This way you can run the
  1629. FORMAT program from drive A and format your new disks in drive B.
  1630.  
  1631. 1. Place your system disk containing FORMAT.COM into drive A.
  1632.  
  1633. 2. If the A> prompt is not present, make A the current drive by
  1634. typing
  1635.  
  1636.         A:
  1637.  
  1638. 3. Place the new disk in drive B.
  1639.  
  1640. 4. Give the command
  1641.  
  1642.         FORMAT B:/V/S
  1643.  
  1644. The FORMAT program will load into memory and ask you to insert your
  1645. new disk into drive B.
  1646. .page
  1647.                                                             Page 9 of 9
  1648.  
  1649. Your new disk is already in drive B, so press ENTER. The
  1650. sequence of events will be the same as it was for formatting a
  1651. disk in a one drive system. The only difference is that you
  1652. do not have to change the system disk in drive A. Just keep
  1653. changing the new disks out of drive B.
  1654.  
  1655.  
  1656. The FORMAT program can be used without the /S and /V parameters. In
  1657. fact, most of your disks should be formatted without the /S
  1658. parameter. This is because the DOS system files require valuable
  1659. data space on your disks. It is best to have one disk that you use
  1660. to start your system and change to your other disks to run your
  1661. programs.
  1662. %This Help Program
  1663.                                                             Page 1 of 15
  1664.  
  1665. The following is general information about terms used in this HELP
  1666. program and about DOS terms and specifications.
  1667.  
  1668.  
  1669. When the HELP program shows the format of a command, it
  1670. includes all variations of the command. Many times, all the
  1671. different parameters are not required; these parameters are
  1672. enclosed in square brackets ([ ]).
  1673.  
  1674. In the HELP program, we refer to all the DOS commands as
  1675. "commands." However, many of these DOS commands are not built into
  1676. DOS, they are really programs that have been provided on your DOS
  1677. diskette.
  1678.  
  1679. This HELP program does not attempt to cover all the technical
  1680. information on every DOS command. If a command needs special
  1681. attention, the HELP program will simply refer you to the DOS manual
  1682. for more information on the command. This program was created to
  1683. help beginners and to be a quick reference to all PC users.
  1684. .page
  1685.                                                             Page 2 of 15
  1686.                      I* FILE SPECIFICATIONS *I
  1687.  
  1688. The file specification tells DOS where to search for the specified
  1689. file. A filespec has four parts: the drive letter, the path, the
  1690. filename, and filename extension.
  1691.  
  1692.  
  1693.  
  1694.                      I- The Drive Specifier -I
  1695.  
  1696. A drive letter specifies which drive the file is on. The drive
  1697. letter is followed by a colon. For example, B: is the drive
  1698. specifier that represents drive B. If a drive specifier is omitted,
  1699. then DOS assumes the current (default) drive.
  1700. .page
  1701.                                                             Page 3 of 15
  1702.                      I- The Path Specifier -I
  1703.  
  1704. The Path tells DOS where the file can be found. The path is another
  1705. name for the directory or subdirectory. Each command explained in
  1706. this help program has four sections. They are: the Purpose, Format,
  1707. Remarks, and the Example. The Format section tells how to use a
  1708. command. Some commands are built into DOS, while other commands are
  1709. actually programs which have been supplied on the DOS diskette.
  1710. These programs are like any other programs and have to be loaded
  1711. into memory and run. You can tell the programs from the built
  1712. in commands because the programs will have a [d:][path] before the
  1713. command name. This means that if the program is not in the path
  1714. (see the PATH command) or in the current directory, you must
  1715. specify which drive, and optionally which subdirectory, the program
  1716. is located in.
  1717. .page
  1718.                                                             Page 4 of 15
  1719.                    I- The Filename Specifier -I
  1720.  
  1721. A filename consists of one to eight characters. The following are
  1722. INVALID characters:
  1723.  
  1724. .  "  /  \  [  ]  :  |  <  >  +  =  ;  , space
  1725.  
  1726. Any other characters are valid filename characters. DOS checks for
  1727. invalid filename characters when entering a filename specification.
  1728. However, I have seen DOS allow a space to be used in a filename
  1729. character, and later it caused problems.
  1730.  
  1731.  
  1732.                    I- The Filename Extension -I
  1733.  
  1734. A filename extension consists of one to three characters preceded
  1735. by a period. The same rules apply for valid extension characters as
  1736. apply for filename characters.
  1737. .page
  1738.                                                             Page 5 of 15
  1739.                  I* GLOBAL FILENAME CHARACTERS *I
  1740.  
  1741. There are two special characters that can be used in a filename and
  1742. extension specification. They are the * and ? characters. These
  1743. characters make life much easier when doing DOS functions on
  1744. several files with similar names.
  1745.  
  1746.  
  1747.                        I- The ? Character -I
  1748.  
  1749. A question mark (?) in a filename or filename extension indicates
  1750. that any character can occupy that position. For example,
  1751.  
  1752.     dir lett?r.txt
  1753.  
  1754. displays all filenames on the default drive that start with the
  1755. letters LETT, then any character, followed by the R character with
  1756. the extension of .TXT.
  1757. .page
  1758.                                                             Page 6 of 15
  1759. An example of what might be displayed is:
  1760.  
  1761.     letter.txt
  1762.     lettxr.txt
  1763.     lett1r.txt
  1764.  
  1765.  
  1766.                        I- The * Character -I
  1767.  
  1768. An asterisk (*) in a filename or filename extension indicates that
  1769. any character can occupy that position and all remaining positions
  1770. in that filename or extension. For example,
  1771.  
  1772.     dir lett*.txt
  1773.  
  1774. displays all filenames on the default drive that start with the
  1775. letters LETT, followed by any other letters, and have the extension
  1776. of .TXT.
  1777. .page
  1778.                                                             Page 7 of 15
  1779. An example of what might be displayed is:
  1780.  
  1781.     lett.txt
  1782.     letter.txt
  1783.     letters.txt
  1784.     lett1.txt
  1785.  
  1786.  
  1787.                       I* DOS DEVICE NAMES *I
  1788.  
  1789. DOS device names are special names which have certain meanings to
  1790. DOS. These names are reserved, so do not name any files with a DOS
  1791. device name.
  1792.  
  1793.  
  1794.                     I- CON (Console Device) -I
  1795.  
  1796. Console keyboard/screen. This is referred to as the standard output
  1797. device. This can be redirected at the command line when redirection
  1798. is desired (see below).
  1799. .page
  1800.                                                             Page 8 of 15
  1801.                          I- AUX or COM1 -I
  1802.  
  1803. The first serial port. This is sometimes called the RS-232C port,
  1804. the serial port, or the asynchronous communications adapter. This
  1805. is connected to a phone line modem, or serial printer.
  1806.  
  1807.  
  1808.                          I- LPT1 or PRN -I
  1809.  
  1810. The first parallel port. This is connected to your parallel
  1811. printer, the most common type of printer on a Personal Computer.
  1812.  
  1813.  
  1814.                             I- NULL -I
  1815.  
  1816. This device does not exist. It is a "dummy" device name for testing
  1817. purposes or to tell a program to output its messages to nowhere. As
  1818. an output device, the write operations are simulated, but no data
  1819. is written. As an input device, an immediate end-of-file is sent.
  1820. .page
  1821.                                                             Page 9 of 15
  1822.  
  1823.         I* REDIRECTION OF STANDARD INPUT & STANDARD OUTPUT *I
  1824.  
  1825. DOS provides a convenient way for us to redirect the output to the
  1826. screen, or input from the keyboard, to another device or file. The
  1827. standard output redirection syntax is as follows:
  1828.  
  1829.     > [d:][path]filename[.ext]
  1830.  
  1831. This causes all output that would go to the screen to be placed in
  1832. the file specified. This will create the file if it does not
  1833. already exist, and erase its contents and start over again if the
  1834. file does exist.
  1835.  
  1836.     >> [d:][path]filename[.ext]
  1837.  
  1838. This causes the output to the screen to be sent to the file
  1839. specified. If the file does not exist, it will create a new one.
  1840. If the file does exist, it will append to the bottom of the file
  1841. without erasing any data presently in the file.
  1842. .page
  1843.                                                             Page 10 of 15
  1844. The standard input redirection syntax is as follows:
  1845.  
  1846.     < [d:][path]filename[.ext]
  1847.  
  1848. This causes the standard input to be retrieved from the file
  1849. specified. This redirection can be used with the DOS SORT command.
  1850.  
  1851.  
  1852. The filename specification can also be any device name, such as the
  1853. printer. To get a printout of your directory, simply type:
  1854.  
  1855.     dir >prn
  1856.  
  1857. A copy of your directory will be printed on the first parallel
  1858. printer (LPT1). To send a copy of the directory to a file, simply
  1859. type:
  1860.  
  1861.     dir >myfile.txt
  1862.  
  1863. A file named MYFILE.TXT will be created or erased if already
  1864. present, and the directory listing will be put in the file.
  1865. .page
  1866.                                                             Page 11 of 15
  1867.  
  1868. This HELP program is based on the commands available in DOS version
  1869. 3.30. It does not include all the available commands. It does contain
  1870. commands not available in earlier versions of DOS. If you are having
  1871. problems with some commands, refer to your DOS manual for more
  1872. information.
  1873.  
  1874.  
  1875. ISHAREWAREI
  1876.  
  1877. DOS Help is a shareware program!  In the past, the distribution
  1878. methods of DOS Help have been somewhat unclear.
  1879.  
  1880. You are granted a 30 day trial period in which time you may try the
  1881. program to see if it meets your needs.  If after 30 days it does not
  1882. meet your needs, simply erase the program and it's related files.
  1883. However, if it does meet your needs, then you are required to register
  1884. your copy.
  1885. .page
  1886.                                                             Page 12 of 15
  1887.  
  1888. IWhen you register your copy you will get a new diskette containing a
  1889. new deluxe version of the program.  This deluxe version has many
  1890. features not in the shareware version.I
  1891.  
  1892. The most notable feature is it's true IhypertextI abilities.  You can
  1893. jump to other page references with a single keystroke.  An example
  1894. would be while reading the description of the Format command, it
  1895. would mention that the /S switch will place the system on the newly
  1896. formatted diskette.  At the same time it would mention that you can
  1897. use the Sys command to place the system on a diskette also.  With
  1898. the hypertext system you could simply highlight the "Sys" command
  1899. refference and press Enter to jump directly to the Sys command
  1900. description.  It's a great way to browse through a manual and find
  1901. what you are looking for very easily.
  1902. .page
  1903.                                                             Page 13 of 15
  1904.  
  1905. IHighlights of the Deluxe Version are:
  1906.  
  1907.   o  Covers DOS 4.0 commands!
  1908.   o  Has Mouse Support
  1909.   o  Can be run in memory resident, shell, or stand alone modes
  1910.   o  True HyperText operation allowing jumps to crosslinks
  1911.   o  User can customize colors
  1912.   o  Split screen and full screen modes available
  1913.   o  Creative exploding windows
  1914.   o  User definable colors
  1915.   o  Special upgrade pricingI
  1916.  
  1917.  
  1918. Use the order form included with this program to order your copy of
  1919. DOS Help today!  Or call I301-696-9677I to place your order with
  1920. Visa or MasterCard.
  1921. .page
  1922.                                                             Page 14 of 15
  1923.  
  1924. We can be reached at the following locations for questions or comments.
  1925.  
  1926.  
  1927.                       IDOS Help Department
  1928.                     The Computer Connection
  1929.                    1306 Bailes Lane, Suite F
  1930.                    Frederick, Maryland 21701I
  1931.  
  1932.                  -----------------------------
  1933.  
  1934.   CompuServe EasyPlex Mail       The Computer Connection BBS
  1935.         71310,2612                      (301) 696-1393
  1936.  
  1937. .page
  1938.                                                             Page 15 of 15
  1939.  
  1940. IDISCLAIMERI
  1941.  
  1942.  
  1943. I, JOHN CROUCH (HEREAFTER KNOWN AS "AUTHOR"), HEREBY DISCLAIM ALL
  1944. WARRANTIES RELATING TO THIS SOFTWARE, WHETHER EXPRESS OR IMPLIED,
  1945. INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OF
  1946. MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  THE AUTHOR
  1947. WILL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL,
  1948. INDIRECT OR SIMILAR DAMAGES DUE TO LOSS OF DATA OR ANY OTHER REASON,
  1949. EVEN IF AUTHOR OR AN AGENT OF AUTHOR HAS BEEN ADVISED OF THE
  1950. POSSIBILITY OF SUCH DAMAGES.  IN NO EVENT SHALL AUTHORS' LIABILITY
  1951. FOR ANY DAMAGES EVER EXCEED THE PRICE PAID FOR THE LICENSE TO USE
  1952. SOFTWARE, REGARDLESS OF THE FORM OF THE CLAIM. THE PERSON USING THE
  1953. SOFTWARE BEARS ALL RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  1954. SOFTWARE.
  1955.  
  1956. %Help & the Mouse
  1957.                                                             Page 1 of 4
  1958.                    IUsing HELP with a MouseI
  1959.  
  1960. This HELP program will support the use of a Microsoft Mouse or
  1961. a 100% compatible mouse.
  1962.  
  1963.  
  1964. First, let's define some mouse terms that are widely used:
  1965.  
  1966. To IpointI with a mouse is to position the mouse cursor to a
  1967. desired location by moving the mouse on the table.
  1968.  
  1969. When you IdragI the mouse, you point to the desired location, hold
  1970. down one of the keys, and move the cursor to another location.
  1971.  
  1972. To IclickI a mouse button is to press and release the button.
  1973.  
  1974. You IreleaseI the mouse button when you let up on the button.
  1975. When this function is required, it usually doesn't matter where you
  1976. pressed the button, just where you release the button.
  1977. .page
  1978.                                                             Page 2 of 4
  1979.  
  1980. When the program starts, it looks to see if a mouse is available on
  1981. the system. If so, the mouse cursor is turned on and positioned in
  1982. the center of the screen. The mouse can then be used to point to the
  1983. desired subject. You can point to a subject and click the IleftI mouse
  1984. button to select that subject.  You will notice that as you move the
  1985. mouse around the screen the subjects you touch with the mouse cursor
  1986. will each be highlighted.
  1987.  
  1988. Once you reach the help screen, you can use the mouse to scroll the
  1989. screen up and down a page at a time--the same as using the PgUp
  1990. and PgDn keys. To scroll the page UP, position the mouse
  1991. cursor on the up arrow in the upper right corner of the screen and
  1992. release the IleftI mouse button. To scroll the page DOWN,
  1993. position the mouse cursor on the down arrow in the lower right
  1994. corner of the screen and release the IleftI button. Once you
  1995. finish reading the help information, you can return to the first
  1996. screen by positioning the mouse cursor in the far right column in
  1997. .page
  1998.                                                             Page 3 of 4
  1999.  
  2000. the area marked as IEXITI. Then release the IleftI button. To
  2001. exit the help screen, you may also release the IrightI mouse
  2002. button.  This has the same effect as pressing the ESCape key.
  2003.  
  2004. On the Main screen, you will see the word IEXITI in the lower right
  2005. corner of the screen if a mouse is present. Position the mouse
  2006. cursor on this word and click the IleftI mouse button to exit the
  2007. program.  You can also release the IrightI button to exit.
  2008.  
  2009. Note: The mouse functions are based on the methods that Microsoft
  2010. recommends for applications programs. These functions are for use    ┌>
  2011. with the Microsoft Mouse and 100% compatibles.                       │
  2012.                                                                      │
  2013. When the mouse functions are enabled, you can still use the keyboard │
  2014. as usual.                                                            │
  2015.                                                                      │
  2016. To exit this screen, place the mouse cursor in this area ────────────┘
  2017. and release the left mouse button.
  2018. .page
  2019.  
  2020.                        IDOS Help Version 2.0s
  2021.                     Released: November 12, 1990I
  2022.  
  2023. ───────────────────────────────────────────────────────────────────
  2024.  
  2025.  
  2026. INew in Version 2.0sI
  2027.  
  2028. When moving around on the selection screen, each subject will be
  2029. highlighted as the mouse cursor moves over it.  In earlier versions
  2030. the left button had to be pressed.
  2031.  
  2032. While in any screen, if you release the IRightI button, it will have
  2033. the same affect as pressing Escape.  This makes it faster to return
  2034. from a help screen, and to exit the program.
  2035.